home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Other Stuff / Other Stuff ’97 / PowerOS Development / basic kernel source / boot.h < prev    next >
C/C++ Source or Header  |  1997-06-26  |  549b  |  28 lines

  1. /*
  2.     boot.h
  3.     a header file for PowerOS
  4.     copyright 1996-1997 by Ben Martz
  5.     all rights reserved world wide
  6.  
  7.     ANY AND ALL MODIFICATIONS TO THIS SOURCE MUST CREDIT THE ORIGINAL
  8.     AUTHOR, BEN MARTZ (benmartz@ic.net), AND MUST BE GIVEN TO THE AUTHOR
  9.     FOR INTEGRATION INTO THE MAIN PowerOS SOURCE TREE. THANK YOU FOR YOUR
  10.     COOPERATION!
  11. */
  12.  
  13. #ifndef ___BOOT___
  14. #define ___BOOT___
  15.  
  16. #define    BOOTVERSION    1
  17.  
  18. typedef struct {
  19.     u_long    version;
  20.     char    *v_baseaddr;
  21.     short    v_rowbytes;
  22.     short    v_depth;
  23.     short    v_width,v_height;
  24.     u_long    m_bytes;
  25. } KernelBootData;
  26.  
  27. #endif
  28.